02. Strategy: Examine Error Messages

Strategy: Examine Error Messages

Question:

Start Quiz:

# A small change will fix the crashing bug in printInches.

def printExample(a, b):
    print a + b
    
def printInches(n):
    print n + " inches"

# Don't change the function calls on lines 10 - 12.
printExample(17, 23)
printExample('long', 'word')
printInches(42)
Solution: